home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / editors / mntemacs.zoo / src / lib+ / abort_in.c next >
Encoding:
C/C++ Source or Header  |  1991-12-02  |  270 b   |  10 lines

  1. #include <stdio.h>
  2. void
  3. _abort_internal(int line, char *file)
  4. {
  5.   fprintf(stderr, "\r\nAborting at line %d of file %s\r\n", line, file);
  6.   abort();        /* note that this won't work of compile this
  7.                with the define that got us to this fun in
  8.                the first place */
  9. }
  10.